aboutsummaryrefslogtreecommitdiff
path: root/src/app/manga/[title]/[id]/[read]/download.jsx
blob: b8af783ca9bdb8fe5849c396bc755077d2065830 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import styles from "./read.module.css";
// import Link from "next/link";

export default function DownloadManga({ chapterId: id }) {
	return (
		<div className={styles.DownloadMain}>
			<a
				href={`https://manga-downloader-7nca.onrender.com/download?id=${id}`}
				style={{ textDecoration: "none" }}
			>
				<button disabled title="Not available right now.">
					Download - Beta
				</button>
			</a>
		</div>
	);
}